home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n13.zip / OPENTR.ZIP / OT_SRC.ZIP / OPTDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-26  |  1KB  |  51 lines

  1. // OptDlg.h : header file
  2. //
  3. // OpenTrap Version 1.00 by Gregory A. Wolking
  4. // Copyright ⌐ 1997 Ziff-Davis Publishing
  5. // First published in PC Magazine, US Edition, July 1997.
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // COptDlg dialog
  9.  
  10. class COptDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     COptDlg(CWnd* pParent = NULL);   // standard constructor
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(COptDlg)
  18.     enum { IDD = IDD_OPTION_DIALOG };
  19.     CStatic    m_lblBuf2;
  20.     UINT    m_intLogSize;
  21.     BOOL    m_bSaveSettings;
  22.     int        m_intVM;
  23.     int        m_intAction;
  24.     BOOL    m_bErrorsOnly;
  25.     BOOL    m_bHide;
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(COptDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(COptDlg)
  41.     virtual BOOL OnInitDialog();
  42.     virtual void OnOK();
  43.     afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46.     afx_msg void OnContextHelp();
  47. private:
  48.     UINT min_buf_size_K;
  49.     UINT m_intHelpContext;
  50. };
  51.